home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / file-tra / wu-ftpd-.000 / wu-ftpd- / wu-ftpd-2.4-fixed / support / makefiles / Makefile.osf < prev    next >
Encoding:
Makefile  |  1994-04-01  |  930 b   |  49 lines

  1. CC     = cc
  2. AR     = ar cq
  3. RANLIB = ranlib
  4. LIBC   = /lib/libc.a
  5. IFLAGS = 
  6. LFLAGS = 
  7. CFLAGS = -O -DDEBUG ${IFLAGS} ${LFLAGS}
  8.  
  9. SRCS   = getusershell.c fnmatch.c strcasestr.c strerror.c strsep.c authuser.c
  10. OBJS   = getusershell.o fnmatch.o strcasestr.o strerror.o strsep.o authuser.o
  11.  
  12. all: $(OBJS)
  13.     -rm -f libsupport.a
  14.     ${AR} libsupport.a $(OBJS)
  15.     ${RANLIB} libsupport.a
  16.  
  17. clean:
  18.     -rm -f *.o libsupport.a
  19.  
  20. ftp.h:
  21.     install -c -m 444 ftp.h /usr/include/arpa
  22.  
  23. paths.h:
  24.     install -c -m 444 paths.h /usr/include
  25.  
  26. fnmatch.o: fnmatch.c
  27.     ${CC} ${CFLAGS} -c fnmatch.c
  28.  
  29. getusershell.o: getusershell.c
  30.     ${CC} ${CFLAGS} -c getusershell.c
  31.  
  32. strerror.o: strerror.c
  33.     ${CC} ${CFLAGS} -c strerror.c
  34.  
  35. strdup.o: strdup.c
  36.     ${CC} ${CFLAGS} -c strdup.c
  37.  
  38. strcasestr.o: strcasestr.c
  39.     ${CC} ${CFLAGS} -c strcasestr.c
  40.  
  41. strsep.o: strsep.c
  42.     ${CC} ${CFLAGS} -c strsep.c
  43.  
  44. authuser.o: authuser.c
  45.     ${CC} ${CFLAGS} -c authuser.c
  46.  
  47. ftw.o: ftw.c
  48.     ${CC} ${CFLAGS} -c ftw.c
  49.